home *** CD-ROM | disk | FTP | other *** search
/ GFX Sensations 1 / Graphic Sensations - Volume 1.iso / tools / amiga / 3d_tools / irit40s.lha / Irit / misc_lib / imalloc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-12-30  |  470 b   |  15 lines

  1. /******************************************************************************
  2. * All mallocs from irit modules should be piped through this allocator.       *
  3. *                                          *
  4. *                     Written by Gershon Elber, April 1933 *
  5. ******************************************************************************/
  6.  
  7. #ifndef IMALLOC_H
  8. #define IMALLOC_H
  9.  
  10. void IritTestAllDynMemory(int PrintAlloc);
  11. VoidPtr IritMalloc(unsigned size);
  12. void IritFree(VoidPtr p);
  13.  
  14. #endif /* IMALLOC_H */
  15.